body {
    font-family: sans-serif;
    margin: 0;
    paddings: 0;
    box-sizing: border-box;
	background-color: aliceblue;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 10px 20px;
}

header .logo {
    font-size: 1.5em;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
	margin-right: 80px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

#hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#hero h1 {
    font-size:4em;
    margin-bottom: 10px;
	color: black;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
	color: black;
}

#featured-products {
    padding: 40px 20px;
    text-align: center;
}

#featured-products h2 {
    margin-bottom: 20px;
}
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
  
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #555;
    border-radius: 5px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    text-align: center;
    margin: 20px;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}


